@charset "UTF-8";
/* Settings
==================================================*/
/* depreciated */
/* Fonts
==================================================*/
h1,
.text-h1 {
  font-size: clamp(2.6rem, 1.5rem + 3vw, 4.3rem); /* 42–69px */
  font-weight: 700;
  line-height: 1.2;
}

h2,
.text-h2 {
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.4375rem); /* 32–55px */
  font-weight: 700;
  line-height: 1.2;
}

h3,
.text-h3 {
  font-size: clamp(1.6rem, 1rem + 2vw, 2.75rem); /* 26–44px (anchor) */
  font-weight: 700;
  line-height: 1.3;
}

h4,
.text-h4 {
  font-size: clamp(1.3rem, 0.9rem + 1.5vw, 2.2rem); /* 21–35px */
  font-weight: 500;
  line-height: 1.3;
}

h5,
.text-h5 {
  font-size: clamp(1.1rem, 0.8rem + 1vw, 1.75rem); /* 18–28px */
  font-weight: 500;
  line-height: 1.4;
}

h6,
.text-h6 {
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.4rem); /* 16–22px */
  font-weight: 400;
  line-height: 1.5;
}

p,
li {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16–18px */
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: none;
}

/* Colors
==================================================*/
body {
  background-color: #fff;
}

h3:not([class]),
h3[id*=h3Header] {
  margin-top: 0;
  font-weight: 900;
  text-align: center;
}

.sub-head {
  margin-top: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.techex-header {
  padding-bottom: 0;
}
.techex-header.no-sh {
  margin-bottom: 2rem;
}

.techex-top-nav {
  position: sticky;
  top: 0;
  z-index: 9997;
  background-color: rgba(57, 62, 65, 0.975);
}
.techex-top-nav .topnavlist {
  width: 100%;
  max-width: 1366px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}
.techex-top-nav .topnavlist li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.techex-top-nav .topnavlist li.nav-logo {
  margin-right: auto;
}
.techex-top-nav .topnavlist li.nav-logo h2 {
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.4rem); /* 16–22px */
  color: #fff;
}
.techex-top-nav .topnavlist li.selected a {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.35rem 0.9rem;
  font-weight: 700;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.125);
}
.techex-top-nav .topnavlist li.selected a > i {
  display: inline-block;
  margin-right: 0.75rem;
}
.techex-top-nav .topnavlist li a {
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}
.techex-top-nav .topnavlist li a:hover {
  opacity: 0.75;
}
.techex-top-nav .topnavlist li a > i {
  display: none;
}
.techex-top-nav .techex-mobile-menu-toggle,
.techex-top-nav .techex-mobile-menu {
  display: none;
}
@media (max-width: 1199px) {
  .techex-top-nav .topnavlist {
    justify-content: space-between;
    padding: 1.25rem 2rem;
  }
  .techex-top-nav .topnavlist li:not(.nav-logo):not(.techex-mobile-menu-toggle) {
    display: none;
  }
  .techex-top-nav .topnavlist li.nav-logo {
    margin-right: 0;
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle {
    display: block;
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle button {
    width: 26px;
    height: 18px;
    display: block;
    border: none;
    padding: 0;
    background-color: transparent;
    position: relative;
    cursor: pointer;
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle button span {
    width: 100%;
    height: 2px;
    display: block;
    border-radius: 0.5rem;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: 250ms all cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle button span:nth-child(1) {
    top: 0;
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle button span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle button span:nth-child(3) {
    bottom: 0;
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle button.open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle button.open span:nth-child(2) {
    opacity: 0;
  }
  .techex-top-nav .topnavlist li.techex-mobile-menu-toggle button.open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .techex-top-nav .techex-mobile-menu {
    margin: 0;
    padding: 0;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 2rem 0.75rem;
    list-style: none;
  }
  .techex-top-nav .techex-mobile-menu li {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .techex-top-nav .techex-mobile-menu li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .techex-top-nav .techex-mobile-menu li a {
    display: block;
    padding: 0.75rem 0.25rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
  }
  .techex-top-nav .techex-mobile-menu li a > i {
    display: none;
  }
  .techex-top-nav .techex-mobile-menu li.selected a {
    font-weight: 700;
    color: #f0f0f0;
  }
  .techex-top-nav .techex-mobile-menu li.selected a > i {
    display: inline-block;
    margin-right: 0.75rem;
  }
  .techex-top-nav.open .techex-mobile-menu {
    display: block;
  }
}

.news-featured-resource {
  gap: 3rem;
}
.news-featured-resource .techex-news,
.news-featured-resource .techex-featured {
  visibility: hidden;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
.news-featured-resource .techex-news.is-ready,
.news-featured-resource .techex-featured.is-ready {
  visibility: visible;
  opacity: 1;
}
.news-featured-resource .techex-news ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-featured-resource .techex-news ul li {
  padding-inline-start: 0;
}
.news-featured-resource .techex-news ul li.news-header {
  margin-bottom: 1.5rem;
  font-size: clamp(1.1rem, 0.8rem + 1vw, 1.75rem); /* 18–28px */
  font-weight: 700;
  text-align: left;
}
.news-featured-resource .techex-news ul li.news-header::before {
  content: "\f1ea";
  margin-right: 1rem;
  border-radius: 9999px;
  padding: 0.75rem;
  font-family: "Font Awesome 6 Free";
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.4rem); /* 16–22px */
  color: #fff;
  background-color: #964069;
}
.news-featured-resource .techex-news ul li.news-header > a {
  text-decoration: none;
  color: #121212;
}
.news-featured-resource .techex-news ul li:not(.news-header) {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16–18px */
  font-weight: 500;
  text-wrap: balance;
}
.news-featured-resource .techex-news ul li:not(.news-header) > a::after {
  content: "\f061";
  display: inline-block;
  margin-left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: inherit;
  font-weight: 900;
  text-decoration: none;
}
.news-featured-resource .techex-news ul li:not(.news-header) > a {
  width: 100%;
  display: flex;
  padding-right: 4.25rem;
  color: #121212;
  position: relative;
  align-items: center;
}
.news-featured-resource .techex-news ul li:not(.news-header) > a:link, .news-featured-resource .techex-news ul li:not(.news-header) > a:visited, .news-featured-resource .techex-news ul li:not(.news-header) > a:hover, .news-featured-resource .techex-news ul li:not(.news-header) > a:focus-visible, .news-featured-resource .techex-news ul li:not(.news-header) > a:active {
  color: #121212;
}
.news-featured-resource .techex-news ul li:not(.news-header) > a::after {
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  min-height: 2.75rem;
  border-radius: 50%;
  padding: 0;
  flex-shrink: 0;
  display: inline-grid;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  place-items: center;
  margin-block: auto;
  border: 1px solid #d3d3d3;
  background-color: #f0f0f0;
}
.news-featured-resource .techex-news ul li:not(.news-header) + li {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(18, 18, 18, 0.125);
  padding-top: 1rem;
}
.news-featured-resource .techex-featured ul {
  margin: 0;
  padding: 0;
}
.news-featured-resource .techex-featured ul li {
  list-style-type: none;
  text-align: center;
}
.news-featured-resource .techex-featured ul li a > img {
  width: 100%;
  max-width: 600px;
  transition: 250ms transform ease-in-out;
  transform-origin: center;
  border: 1px solid rgba(18, 18, 18, 0.125);
}
.news-featured-resource .techex-featured ul li a > img:hover {
  transform: scale(1.0125);
}
.news-featured-resource .techex-featured ul li .btn {
  margin-top: 1rem;
}

.techex-highlight {
  padding: 2rem;
  color: #fff;
  background: linear-gradient(135deg, #1b4692 0%, #964069 100%);
}
@media (max-width: 767px) {
  .techex-highlight {
    padding: 1.5rem;
  }
}
.techex-highlight .two-column {
  grid-template-columns: auto auto;
  place-content: center;
  align-items: center;
}
.techex-highlight p.stat {
  font-size: clamp(2.6rem, 1.5rem + 3vw, 4.3rem);
  font-weight: 900;
}
.techex-highlight .linked-resource p {
  margin-bottom: 0.25rem;
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.4rem);
  font-weight: 500;
}
.techex-highlight .linked-resource a {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  color: #f0f0f0;
}

.guides-briefs-labs {
  --guides-briefs-labs-accent: #1b4692;
  padding: clamp(3rem, 5vw + 2rem, 80px) calc(clamp(3rem, 5vw + 2rem, 80px) / 2);
}
@media (max-width: 767px) {
  .guides-briefs-labs {
    padding: calc(clamp(3rem, 5vw + 2rem, 80px) / 2) calc(clamp(3rem, 5vw + 2rem, 80px) / 4);
  }
}
.guides-briefs-labs {
  background-color: #f0f0f0;
}
.guides-briefs-labs + .guides-briefs-labs {
  padding-top: 0;
}
.guides-briefs-labs .techex-cards {
  max-width: 1366px;
  margin: 0 auto;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] {
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 6rem) / 3);
  gap: 3rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--guides-briefs-labs-accent) #f0f0f0;
  scroll-snap-type: inline proximity;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem]::-webkit-scrollbar {
  height: 0.5rem;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem]::-webkit-scrollbar-track {
  border-radius: 9999px;
  background-color: #f0f0f0;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem]::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background-color: var(--guides-briefs-labs-accent);
}
@media (max-width: 1366px) {
  .guides-briefs-labs .techex-cards ul[id*=ulListItem] {
    grid-auto-columns: calc((100% - 2.25rem) / 2);
    gap: 2.25rem;
  }
}
@media (max-width: 991px) {
  .guides-briefs-labs .techex-cards ul[id*=ulListItem] {
    grid-auto-columns: 100%;
    gap: 1.5rem;
  }
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem] {
  display: flex;
  margin: 0;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem]::before {
  content: "\f1ea";
  width: calc(100% + 4rem);
  height: clamp(4.5rem, 3.25rem + 3vw, 5.625rem); /* 72–90px */
  display: flex;
  margin: -2rem -2rem 2rem;
  padding: 0;
  font-family: "Font Awesome 6 Free";
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.4375rem); /* 32–55px */
  font-weight: 900;
  color: #fff;
  background: var(--guides-briefs-labs-accent);
  justify-content: center;
  align-items: center;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem] .topics {
  margin: 0;
  padding: 0;
  order: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem] .topics > li {
  margin: 0;
  border: 1px solid var(--guides-briefs-labs-accent);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  list-style-type: none;
  font-size: clamp(0.6875rem, 0.625rem + 0.25vw, 0.75rem); /* 11–12px */
  font-weight: 700;
  color: var(--guides-briefs-labs-accent);
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem] > a {
  order: 2;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #121212;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem] > .summary {
  order: 3;
  margin-bottom: 1.5rem;
  color: #393e41;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem] .sponsored-section {
  order: 4;
  margin-top: auto;
  border-top: 1px solid rgba(18, 18, 18, 0.125);
  padding-top: 1.25rem;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem] .sponsored-section .sponsor-name {
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* ~14–16px */
  font-weight: 500;
}
.guides-briefs-labs .techex-cards ul[id*=ulListItem] li[id*=liListItem] .sponsored-section .sponsor-name::before {
  content: "Sponsored by";
  margin-right: 0.5ch;
  color: var(--guides-briefs-labs-accent);
}
.guides-briefs-labs .footer {
  margin-top: 2.5rem;
  text-align: center;
}

.guides-briefs-labs .techex-cards ul[id*=ulListItem] > li[id*=liListItem]:nth-child(3n+1)::before {
  content: "\f1ea";
}

.guides-briefs-labs .techex-cards ul[id*=ulListItem] > li[id*=liListItem]:nth-child(3n+2)::before {
  content: "\e4e5";
}

.guides-briefs-labs .techex-cards ul[id*=ulListItem] > li[id*=liListItem]:nth-child(3n+3)::before {
  content: "\f017";
}

#main .guides-briefs-labs:nth-child(3n+1 of .guides-briefs-labs) {
  --guides-briefs-labs-accent: #1b4692;
}
#main .guides-briefs-labs:nth-child(3n+1 of .guides-briefs-labs) .footer > a {
  color: #fff;
  background-color: #1b4692;
}
#main .guides-briefs-labs:nth-child(3n+1 of .guides-briefs-labs) .footer > a::before {
  background: linear-gradient(90deg, rgb(17.4485549133, 45.2369942197, 94.3514450867) 0%, rgb(23.8161849711, 61.7456647399, 128.7838150289) 100%);
}
#main .guides-briefs-labs:nth-child(3n+1 of .guides-briefs-labs) .footer > a:hover, #main .guides-briefs-labs:nth-child(3n+1 of .guides-briefs-labs) .footer > a:focus-visible {
  color: #fff;
}
#main .guides-briefs-labs:nth-child(3n+1 of .guides-briefs-labs) .footer > a:hover, #main .guides-briefs-labs:nth-child(3n+1 of .guides-briefs-labs) .footer > a:focus-visible {
  color: #fff;
  background-color: #1b4692;
}

#main .guides-briefs-labs:nth-child(3n+2 of .guides-briefs-labs) {
  --guides-briefs-labs-accent: #964069;
}
#main .guides-briefs-labs:nth-child(3n+2 of .guides-briefs-labs) .footer > a {
  color: #fff;
  background-color: #964069;
}
#main .guides-briefs-labs:nth-child(3n+2 of .guides-briefs-labs) .footer > a::before {
  background: linear-gradient(90deg, rgb(107.1028037383, 45.6971962617, 74.9719626168) 0%, rgb(135.7009345794, 57.8990654206, 94.9906542056) 100%);
}
#main .guides-briefs-labs:nth-child(3n+2 of .guides-briefs-labs) .footer > a:hover, #main .guides-briefs-labs:nth-child(3n+2 of .guides-briefs-labs) .footer > a:focus-visible {
  color: #fff;
}
#main .guides-briefs-labs:nth-child(3n+2 of .guides-briefs-labs) .footer > a:hover, #main .guides-briefs-labs:nth-child(3n+2 of .guides-briefs-labs) .footer > a:focus-visible {
  color: #fff;
  background-color: #964069;
}

#main .guides-briefs-labs:nth-child(3n+3 of .guides-briefs-labs) {
  --guides-briefs-labs-accent: #393e41;
}
#main .guides-briefs-labs:nth-child(3n+3 of .guides-briefs-labs) .footer > a {
  color: #fff;
  background-color: #393e41;
}
#main .guides-briefs-labs:nth-child(3n+3 of .guides-briefs-labs) .footer > a::before {
  background: linear-gradient(90deg, rgb(28.406557377, 30.8983606557, 32.393442623) 0%, rgb(47.468852459, 51.6327868852, 54.131147541) 100%);
}
#main .guides-briefs-labs:nth-child(3n+3 of .guides-briefs-labs) .footer > a:hover, #main .guides-briefs-labs:nth-child(3n+3 of .guides-briefs-labs) .footer > a:focus-visible {
  color: #fff;
}
#main .guides-briefs-labs:nth-child(3n+3 of .guides-briefs-labs) .footer > a:hover, #main .guides-briefs-labs:nth-child(3n+3 of .guides-briefs-labs) .footer > a:focus-visible {
  color: #fff;
  background-color: #393e41;
}

.more-topics {
  padding: clamp(3rem, 5vw + 2rem, 80px) calc(clamp(3rem, 5vw + 2rem, 80px) / 2);
}
@media (max-width: 767px) {
  .more-topics {
    padding: calc(clamp(3rem, 5vw + 2rem, 80px) / 2) calc(clamp(3rem, 5vw + 2rem, 80px) / 4);
  }
}
.more-topics {
  background: #fff url("http://tdwi.org/~/media/TDWI/TDWI Global/Tech Exchange/assets/techlines_2560x1024_r1.webp") center/cover no-repeat;
}
.more-topics ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.more-topics ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.more-topics ul li.selected {
  display: none;
}
.more-topics ul li a {
  display: block;
  border: 2px solid rgba(18, 18, 18, 0.125);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.4rem); /* 16–22px */
  font-weight: 700;
  text-decoration: none;
  color: #121212;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  transition: 125ms transform ease-in-out;
  transform-origin: center;
}
.more-topics ul li a:hover {
  transform: scale(1.05);
}
.more-topics ul li a i {
  margin-right: 1rem;
  font-family: "Font Awesome 6 Free";
  font-size: inherit;
  color: #1b4692;
}

/*# sourceMappingURL=tech-exchange-styles.css.map */
